function MasicPointAddNormal(Rate){
let MasicPoint = GetCommonData("MASICPOINT");
let AddPoint = GetCommonData("MASICPOINT_ADD");

if(OnBomb == false){
MasicPoint += AddPoint * Rate;
SetCommonData("MASICPOINT",MasicPoint);
}
}

function MasicPointAddSpellCard{
let MasicPoint = GetCommonData("MASICPOINT");
let AddPoint = GetCommonData("MASICPOINT_ADD");

if(GetBombCountInThisSpell == 0&&GetMissCountInThisSpell == 0){
MasicPoint += AddPoint * 15;
SetCommonData("MASICPOINT",MasicPoint);
}
}


function ChackBonus{
scorebonus = GetCommonData("SCOREBONUS");
spellbonus = GetCommonData("SPELLBONUS");
}